Remove an obsolete function
authorFederico Mena Quintero <federico@gnome.org>
Mon, 10 Dec 2012 22:05:18 +0000 (16:05 -0600)
committerFederico Mena Quintero <federico@gnome.org>
Mon, 10 Dec 2012 22:05:18 +0000 (16:05 -0600)
gtk/gtkfilechooserdefault.c

index f0986d1f431d81b726b255e724ca3ad6cddce79e..2be17643375af61c1a37e9eb3ce06c153fafef13 100644 (file)
@@ -3060,26 +3060,6 @@ operation_mode_set_recent (GtkFileChooserDefault *impl)
   recent_start_loading (impl);
 }
 
-#if REMOVE_FOR_PLACES_SIDEBAR
-/* Sometimes we need to frob the selection in the shortcuts list manually */
-static void
-shortcuts_select_item_without_activating (GtkFileChooserDefault *impl, int pos)
-{
-  GtkTreeSelection *selection;
-  GtkTreePath *path;
-
-  selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (impl->browse_shortcuts_tree_view));
-
-  g_signal_handlers_block_by_func (selection, G_CALLBACK (shortcuts_selection_changed_cb), impl);
-
-  path = gtk_tree_path_new_from_indices (pos, -1);
-  gtk_tree_selection_select_path (selection, path);
-  gtk_tree_path_free (path);
-
-  g_signal_handlers_unblock_by_func (selection, G_CALLBACK (shortcuts_selection_changed_cb), impl);
-}
-#endif
-
 static void
 operation_mode_set (GtkFileChooserDefault *impl, OperationMode mode)
 {